home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 8174 / 8174.xpi / chrome / antbar.jar / content / bindings / bindings.xml < prev   
Extensible Markup Language  |  2009-12-30  |  1KB  |  28 lines

  1. <?xml version="1.0"?>
  2. <!-- 
  3.       bindings.xml
  4.       antbar
  5.  
  6.       Created by Zak on 2008-06-12.
  7.       Contributor Brian King (http://briks.si)
  8.       Copyright 2008-2009 Ant.com. All rights reserved.
  9.  
  10.       This binding is a bit of a hack. We attach it just so the constructor is called when the toolbar is loaded
  11.       addEventListener("load", ...) instead does not get called at the right time thus the bar is not initialised correctly
  12.       NOTE, we attach this binding not to the toolbar, but to am empty space filling element (hbox)
  13.       If we attach it to the toolbar or any other visisble element, styles are not applied and they don't display correctly
  14.  -->
  15.  
  16. <bindings xmlns="http://www.mozilla.org/xbl"
  17.     xmlns:xbl="http://www.mozilla.org/xbl"
  18.     xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  19.  
  20.     <binding id="anttoolbar">
  21.         <implementation>
  22.             <constructor><![CDATA[
  23.                 AntBar.init(this);
  24.             ]]></constructor>
  25.         </implementation>
  26.     </binding>
  27. </bindings>
  28.